7150d569c0a5ffaba2a0bef4f41d6a7ca2e1da34,modules/core/src/test/java/io/smsc/repository/crud/rest/CrudMetaFormDataRestTest.java,CrudMetaFormDataRestTest,testGetSingleCrudMetaFormData,#,18
Before Change
.andExpect(jsonPath("$.visible", is(CRUD_META_FORM_DATA_1.getVisible())))
.andExpect(jsonPath("$.decorator", is(CRUD_META_FORM_DATA_1.getDecorator())))
.andExpect(jsonPath("$.order", is(CRUD_META_FORM_DATA_1.getOrder())))
.andExpect(jsonPath("$.fieldLayoutGridPosition", is(CRUD_META_FORM_DATA_1.getFieldLayoutGridPosition())));
}
@Test
After Change
.andExpect(jsonPath("$.visible", is(CRUD_META_FORM_DATA_1.getVisible())))
.andExpect(jsonPath("$.decorator", is(CRUD_META_FORM_DATA_1.getDecorator())))
.andExpect(jsonPath("$.order", is(CRUD_META_FORM_DATA_1.getOrder())))
.andExpect(jsonPath("$.type", is(CRUD_META_FORM_DATA_1.getType())))
.andExpect(jsonPath("$.linkedClass", is(CRUD_META_FORM_DATA_1.getLinkedClass())))
.andExpect(jsonPath("$.linkedRepository", is(CRUD_META_FORM_DATA_1.getLinkedRepository())))
.andExpect(jsonPath("$.fieldLayoutGridPosition", is(CRUD_META_FORM_DATA_1.getFieldLayoutGridPosition())));
}
@Test